home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if %1x == x goto error
- if %2x == x goto error
- echo.
- echo Installing Algebra programs...
- md %2\soa
- copy algebra.exe %2\soa
- copy readme.txt %2\soa
- copy history.txt %2\soa
- md %2\Basics
- copy gmath.exe %2\basics
- copy history.txt %2\basics
- md %2\dbase
- copy dbase.exe %2\dbase
- cd\
- %2
- cd soa
- algebra.exe
- del algebra.exe
- echo.
- echo SOA Installation complete.
- echo.
- echo Command SOA to get to the MENU.
- echo.
- pause
- echo.
- cd\basics
- gmath.exe
- del gmath.exe
- echo.
- echo BASIC MATH Installation complete.
- echo.
- echo Command BASICS to get to the MENU.
- echo.
- pause
- echo.
- cd\dbase
- dbase.exe
- del dbase.exe
- echo.
- echo DBASE installation complete.
- echo.
- echo Command DB to run the program.
- echo.
- pause
- echo.
- cd\soa
- type readme.txt | more
- goto exit
- :error
- echo.
- echo Error! Command Install 'origin drive' space 'destination drive.'
- :exit
-
-